home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / INC / MEM.INC < prev    next >
Text File  |  1997-01-07  |  410b  |  11 lines

  1. memmove equ <memcpy>
  2. movmem equ <memcpy>
  3. memcmpi equ <memicmp>
  4. memcpy proto,dest:dword,src:dword,len:dword  ;FIX v1.1: I had dest/src reversed!
  5. memccpy proto,dest:dword,src:dword,c1:byte,len:dword
  6. memcmp proto,p1:dword,p2:dword,len:dword
  7. memicmp proto,p1:dword,p2:dword,len:dword
  8. memset proto,p:dword,val:byte,len:dword
  9. setmem proto,p:dword,len:dword,val:byte
  10. memchr proto,p:dword,val:byte,len:dword
  11.